home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / wtjmarch.zip / LIFE.ZIP / PLIFE.TXT < prev    next >
Text File  |  1991-12-03  |  2KB  |  72 lines

  1.                   The Game of Life
  2.              written in Turbo Pascal for Windows
  3.                                   PLIFE.TXT
  4.  
  5. Introduction
  6. ------------
  7. PLife is a Windows program written in Turbo Pascal for Windows that
  8. illustrates the use of the ObjectWindows application framework.
  9. This program is copyright (c) 1991, M. Zack Urlocker.  All rights
  10. reserved.  This program and its source code may be freely distributed
  11. for non-commercial use.
  12.  
  13. The files include:
  14.  
  15.  PLIFE.EXE     - Executable program file
  16.  PLIFE.PAS     - Turbo Pascal for Windows source code
  17.  PLIFE.RES     - Windows resource file
  18.  PLIFE.TXT     - This file
  19.  
  20. If you have received a ZIP file, you must unzip it first.
  21.  
  22. Using Life
  23. ----------
  24.  
  25. This program requires Microsoft Windows 3.0 or later.  To start the
  26. program start Windows and then use the File Run command to start
  27. PLIFE.EXE.  Or run life directly from the DOS C:> prompt by typing:
  28.  
  29.    WIN PLIFE
  30.  
  31. Like other versions of Life, this version allows you to draw cells
  32. on the screen and then mutate them according to certain rules.
  33. If an empty cell has exactly three neighbors it will be born. If an
  34. occupied cell fewer than two or more than three neighbors it will
  35. die.
  36.  
  37. The program features:
  38.  
  39.    - Mouse and keyboard support for drawing cells
  40.    - Zoomable, resizable screen
  41.    - Optional grid
  42.    - Selectable timer speed
  43.    - Trace mode
  44.    - Random and non-random starting patterns
  45.  
  46.  
  47. NOTES
  48. -----
  49.  
  50. Version 1.0  05/02/91
  51.  -Written in Turbo Pascal for Windows
  52.  -Includes keyboard and mouse interface
  53.  
  54.  
  55. Turbo Pascal for Windows Users
  56. ------------------------------
  57.  
  58. This program illustrates some of the basic ideas common to many Windows
  59. programs including mouse and keyboard handling, graphics, resizing,
  60. rescaling and the use of timers.  Feel free to experiment with the
  61. source code to learn how to implement similar features in your own
  62. programs.
  63.  
  64. You can compile this program with the Windows IDE or the command line
  65. compiler.  To compile with the command line compiler type the following
  66. at the DOS C:> prompt:
  67.  
  68.     TPCW PLIFE.PAS
  69.  
  70.  
  71.                                     * * *
  72.